-
Notifications
You must be signed in to change notification settings - Fork 522
Support slice ops with default start #9923
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/9923
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit 4322f80 with merge base b7eee0c ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This pull request was exported from Phabricator. Differential Revision: D72503552 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution :)
Summary: Since D71962884, we see the following slice ops in ASR encoder: {F1976830836} This is causing failure during XNNPack delegation, since XNNPack slice pass is trying to compare start_idx 'None' to 0. This diff fixes that. Reviewed By: mcr229 Differential Revision: D72503552
bfe6e5c
to
6922356
Compare
Summary: Pull Request resolved: pytorch#9923 Since D71962884, we see the following slice ops in ASR encoder: {F1976830836} This is causing failure during XNNPack delegation, since XNNPack slice pass is trying to compare start_idx 'None' to 0. This diff fixes that. Reviewed By: mcr229 Differential Revision: D72503552
This pull request was exported from Phabricator. Differential Revision: D72503552 |
6922356
to
4322f80
Compare
Differential Revision: D72503552 Pull Request resolved: #9923
Summary:
Since a recent change we see None arg in the slice op
This is causing failure during XNNPack delegation, since XNNPack slice pass is trying to compare start_idx 'None' to 0.
This diff fixes that.
Differential Revision: D72503552